
digraph "Server_Structure" {
rankdir = "TB"

	graph [	label = "\n\n\nServer structure\nupdated September 19 2005", size="66,66" ];

subgraph cluster_0 {
		style=filled;
		color=lightgrey;
                width = "1.0"
	"seatle" [
		label = "seattle.wikia.com"
		color = "black"
		fontsize = "15"
		fontname = "Times-Roman"
		fontcolor = "black"
		shape = "box"
	]
		label = "Squid Cache";
	}

subgraph cluster_1 {
		style=filled;
		color=lightgrey;
                width = "1.0"
                shape = "ellipse"
	"web" [
		label = "tampa.wikia.com|dover.wikia.com|sidney.wikia.com"
		color = "blue"
		fontsize = "15"
		fontname = "Times-Roman"
		fontcolor = "black"
		shape = "record"
                orentation = 90
	]
		label = "Webserver";
	}

subgraph cluster_2 {
		style=filled;
		color=lightgrey;
                width = "1.0"
	"ross" [
		label = "ross.wikia.com"
		color = "darkgreen"
		fontsize = "15"
		fontname = "Times-Roman"
		fontcolor = "black"
		shape = "box"
	]
		label = "Mailing Lists";
	}

subgraph cluster_3 {
		style=filled;
		color=lightgrey;
                width = "1.0"
	"brussels" [
		label = "brussels.wikia.com"
		color = "red"
		fontsize = "15"
		fontname = "Times-Roman"
		fontcolor = "black"
		shape = "box"
	]
		label = "Database";
	}

"internet" -> "seatle"
"internet" -> "ross"
"seatle" -> "web" -> "brussels"
"ross" -> "brussels" [label = "database slave"]
}

